home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / sun / Makefile.in < prev    next >
Makefile  |  1996-02-19  |  794b  |  32 lines

  1. # Install extra bits borrowed from Sun' JDK-1.0.
  2. #
  3. # See "COPYRIGHT" for license terms on the files in this directory
  4. # excluding this one.
  5. #
  6. # Copyright (c) 1996 Systems Architecture Research Centre,
  7. #           City University, London, UK.
  8. #
  9. # See the file "license.terms" for information on usage and redistribution
  10. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11. #
  12. # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  13.  
  14. INSTALL=    @INSTALL@
  15. INSTALL_DATA=    @INSTALL_DATA@
  16. prefix=        @prefix@
  17. classdir=    @datadir@/kaffe
  18. propdir=    @datadir@/kaffe/lib
  19. srcdir=        @srcdir@
  20.  
  21. all:
  22.  
  23. clean:
  24.  
  25. distclean:
  26.  
  27. install:
  28.         mkdir -p $(classdir)
  29.         mkdir -p $(propdir)
  30.         $(INSTALL_DATA) $(srcdir)/classes.zip $(classdir)/classes.zip
  31.         $(INSTALL_DATA) $(srcdir)/javac.properties $(propdir)/javac.properties
  32.